{% extends 'base.html' %} {% block title %}Sign In — {{ site_settings.institute_name }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Login

Use your username or email to continue. New here? Create an account

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% csrf_token %}
{{ form.username }} {% if form.username.errors %}
{{ form.username.errors.0 }}
{% endif %}
{% if form.password.errors %}
{{ form.password.errors.0 }}
{% endif %}
Forgot password?
{% if form.non_field_errors %}
{{ form.non_field_errors.0 }}
{% endif %}
Don't have a student account? Create Student Account
Return to home
{% endblock %} {% block extra_js %} {% endblock %}